home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-07-20 | 440 b | 20 lines | [TEXT/CWIE] |
- //Copyright (c) 1997 Aidan Cully
- //All rights reserved
-
- #ifndef __FLOATINGWINDOWLAYER_H
- #define __FLOATINGWINDOWLAYER_H
-
- #include "CLWindowLayer.h"
-
- class TFloatingWindowLayer:
- public TWindowLayer
- {
- public:
- virtual void MakeActive( bool );
- virtual void AddWindow( TBaseWindow* );
- virtual void RemoveWindow( TBaseWindow* );
- virtual void SelectWindow( TBaseWindow* );
- virtual void HandleBackground( const TBackgroundEvent* );
- };
-
- #endif